home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F22122_InputFormES.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2001-09-01  |  1021 b   |  45 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
  3.  
  4.     <xsl:template match="/">
  5.         <xsl:apply-templates/>
  6.     </xsl:template>
  7.  
  8.     <xsl:template match="employee">
  9.  
  10.  
  11.         Primero nombre:
  12.         <xsl:element name ="input">            
  13.             <xsl:attribute name="value">
  14.                 <xsl:value-of select="firstname"/>
  15.             </xsl:attribute>
  16.         </xsl:element>
  17.         <br/>
  18.  
  19.         Segundo Nombre:
  20.         <xsl:element name ="input">            
  21.             <xsl:attribute name="value">
  22.                 <xsl:value-of select="lastname"/>
  23.             </xsl:attribute>
  24.         </xsl:element>
  25.         <br/>
  26.  
  27.  
  28.         Por hora Tasa:
  29.         <xsl:element name ="input">            
  30.             <xsl:attribute name="value">
  31.                 <xsl:value-of select="hourlyrate"/>
  32.             </xsl:attribute>
  33.         </xsl:element>
  34.         <br/>
  35.  
  36.         El departamento:
  37.         <xsl:element name ="input">            
  38.             <xsl:attribute name="value">
  39.                 <xsl:value-of select="department"/>
  40.             </xsl:attribute>
  41.         </xsl:element>
  42.         <br/>
  43.     </xsl:template>
  44. </xsl:stylesheet>
  45.